<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> 用户名:<%=request.getAttribute("username")%>
密 码:<%=request.getAttribute("password")%>

使用EL表达式:
用户名:${username}
密 码:${password}